home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / part.h < prev    next >
C/C++ Source or Header  |  1999-03-17  |  3KB  |  89 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: part.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer    
  8. // File Creation Date: 09/18/1997  
  9. // Date Last Modified: 03/17/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. This is a test program use to test the (P)ersistent base class.
  16.  
  17. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  18. All those who put this code or its derivatives in a commercial
  19. product MUST mention this copyright in their documentation for
  20. users of the products in which this code or its derivative
  21. classes are used. Otherwise, you have the freedom to redistribute
  22. verbatim copies of this source code, adapt it to your specific
  23. needs, or improve the code and release your improvements to the
  24. public provided that the modified files carry prominent notices
  25. stating that you changed the files and the date of any change.
  26.  
  27. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  28. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  29. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  30. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  31. CORRECTION.
  32. */
  33. // ----------------------------------------------------------- //   
  34. #ifndef __PART_HPP
  35. #define __PART_HPP
  36.  
  37. #include "persist.h"
  38. #include "float64.h"
  39.  
  40. typedef INT32 ID;
  41. typedef FLOAT64 Price;
  42. typedef UString Name;
  43.  
  44. const INT32 ClassPartID = 1285;
  45.  
  46. class Part : public Persistent
  47. public:
  48.   Part(POD *pod) : Persistent(pod) { name = "\0"; id = 0; price = 0; }
  49.   Part(const POD *pod) : Persistent(pod) { name = "\0"; id = 0; price = 0; }
  50.   Part() { name = "\0"; id = 0; price = 0; }
  51.   
  52. public:
  53.   ID GetID() const { return id; }
  54.   Price GetPrice() const { return price; }
  55.   char *GetName() { return name.c_str(); }
  56.   void SetID(ID i) { id = i; }
  57.   void SetPrice(Price p) { price = p; }
  58.   void SetName(char *s) { name = s; }
  59.   void SetName(const UString &s) { name = s; }
  60.   
  61. private: // Base class interface
  62.   virtual INT32 GetClassID() const { return ClassPartID; }
  63.   virtual const char *GetClassName() { return "Class Part"; }
  64.   virtual FAU Write();
  65.   virtual void Read(FAU Address);
  66.   virtual FAU Find();
  67.   virtual FAU Delete();
  68.   virtual FAU Remove();
  69.   
  70. public: // Base class interface
  71.   virtual __UWORD__ ObjectLength();
  72.   virtual void SetObjectAddress(FAU addr) { objectaddress = addr; }
  73.   virtual FAU GetObjectAddress() { return objectaddress; }
  74.   virtual int CompareIndex();
  75.   virtual int RebuildIndexFile(const char *fname);
  76.  
  77. private:
  78.   ID id; 
  79.   Price price;
  80.   Name name;
  81. };
  82.  
  83. #endif // __PART_HPP
  84. // ----------------------------------------------------------- //
  85. // ------------------------------- //
  86. // --------- End of File --------- //
  87. // ------------------------------- //
  88.